github.com/jackc/pgx/v5/pgconn.Pipeline.state (field)

28 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L1900: 			rr.pipeline.state.HandleError(pgErr)
		pgconn.go#L2265: 	state  pipelineState
		pgconn.go#L2432: 		pipeline.state.Init()
		pgconn.go#L2443: 	pgConn.pipeline.state.Init()
		pgconn.go#L2470: 	p.state.PushBackRequestType(pipelinePrepare)
		pgconn.go#L2480: 	p.state.PushBackRequestType(pipelineDeallocate)
		pgconn.go#L2493: 	p.state.PushBackRequestType(pipelineQueryParams)
		pgconn.go#L2505: 	p.state.PushBackRequestType(pipelineQueryPrepared)
		pgconn.go#L2516: 	p.state.PushBackRequestType(pipelineQueryStatement)
		pgconn.go#L2517: 	p.state.PushBackStatementData(statementDescription, resultFormats)
		pgconn.go#L2533: 	p.state.PushBackRequestType(pipelineFlushRequest)
		pgconn.go#L2548: 	p.state.PushBackRequestType(pipelineSyncRequest)
		pgconn.go#L2573: 	p.state.RegisterSendingToServer()
		pgconn.go#L2605: 	currentRequestType := p.state.ExtractFrontRequestType()
		pgconn.go#L2647: 		p.state.HandleError(pgErr)
		pgconn.go#L2671: 		p.state.HandleError(pgErr)
		pgconn.go#L2712: 	sd, resultFormats := p.state.ExtractFrontStatementData()
		pgconn.go#L2744: 		p.state.HandleError(pgErr)
		pgconn.go#L2763: 		p.state.HandleError(pgErr)
		pgconn.go#L2779: 		p.state.HandleReadyForQuery()
		pgconn.go#L2783: 		p.state.requestEventQueue.PushFront(pipelineRequestEvent{RequestType: pipelineSyncRequest, WasSentToServer: true, BeforeFlushOrSync: true})
		pgconn.go#L2786: 		p.state.HandleError(pgErr)
		pgconn.go#L2805: 		p.state.HandleError(pgErr)
		pgconn.go#L2823: 		p.state.HandleError(pgErr)
		pgconn.go#L2849: 		p.state.HandleError(pgErr)
		pgconn.go#L2871: 		p.state.HandleError(pgErr)
		pgconn.go#L2911: 	if p.state.PendingSync() {
		pgconn.go#L2920: 	for p.state.ExpectedReadyForQuery() > 0 {